home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / circuits / ocean / cacd_bin.000 / cacd_bin / lib / include / dmui.h < prev   
C/C++ Source or Header  |  1994-05-06  |  3KB  |  93 lines

  1. /* SccsId = "@(#)dmui.h 3.10 (TU-Delft) 04/28/93" */
  2. /**********************************************************
  3.  
  4. Name/Version      : The Design Data Management Project
  5.  
  6. Language          : C
  7. Operating system  : UNIX SYSTEM V
  8. Host machine      : HP9000/S500
  9.  
  10. Author(s)         : S. de Graaf
  11.                     A. van der Hoeven
  12.                     T.G.R. van Leuken
  13.                     N. van der Meijs
  14.             T. Vogel
  15.             P. van der Wolf
  16. Creation date     : 04-Dec-1986
  17. Modified by       : S. de Graaf
  18. Modification date : 26-Feb-1988
  19.  
  20.  
  21.         Delft University of Technology
  22.         Department of Electrical Engineering
  23.         Network Theory Section
  24.         Mekelweg 4 - P.O.Box 5031
  25.         2600 GA DELFT
  26.         The Netherlands
  27.  
  28.         Phone : 015 - 786234
  29.  
  30.         COPYRIGHT (C) 1985-1988, All rights reserved
  31. **********************************************************/
  32.  
  33. #ifndef __DMUI_H
  34. #define __DMUI_H
  35.  
  36. struct wkstat {
  37.     char   *wsname;
  38.     int     (*wstype) ();
  39.     int     cHeight;
  40.     int     cWidth;
  41. }               ws_table[] = {
  42. #ifdef hp9000s500
  43.                     "hp2397", Hp2397, 9, 7,
  44.                     "2397", Hp2397, 9, 7,
  45.                     "hp98700", Hp98700, 19, 10,
  46.                     "98700", Hp98700, 19, 10,
  47.                     "hp9836", Hp98700, 19, 10,
  48.                     "rast10", Rast10, 11, 8,
  49.                     "hpgp", HpGp, 19, 13,
  50.                     "plotfile", PlotFile, 19, 13,
  51. #endif
  52. #ifdef hp9000s300
  53.                     "hp2397", Hp2397, 9, 7,
  54.                     "2397", Hp2397, 9, 7,
  55.                     "hp98700", Hp98700, 19, 10,
  56.                     "98700", Hp98700, 19, 10,
  57.                     "hp98720", Hp98700, 19, 10,
  58.                     "98720", Hp98700, 19, 10,
  59.                     "hp9836", Hp98700, 19, 10,
  60.                     "hp98550", Hp98700, 19, 10,
  61.                     "98550", Hp98700, 19, 10,
  62.                     "plotfile", PlotFile, 19, 13,
  63. #endif
  64. #ifdef sel
  65.                     "rast10", Rast10, 11, 8,
  66.                     "hp2397", Hp2397, 9, 7,
  67.                     "2397", Hp2397, 9, 7,
  68.                     "plotfile", PlotFile, 19, 13,
  69. #endif
  70. #ifdef hp9000s800
  71.                     "rast10", Rast10, 11, 8,
  72.                     "hp2397", Hp2397, 9, 7,
  73.                     "2397", Hp2397, 9, 7,
  74.                     "plotfile", PlotFile, 19, 13,
  75. #endif
  76. #ifdef apollo
  77.                     "apollo_15_color", AplloBrrw, 19, 10,
  78.                     "hp2397", Hp2397, 9, 7,
  79.                     "2397", Hp2397, 9, 7,
  80.                     "plotfile", PlotFile, 19, 13,
  81. #endif
  82. #ifdef sun
  83.                     "sun", SnClrScrn, 19, 10,
  84.                     "sunw", SnClrWndw, 19, 10,
  85.                     "hp2397", Hp2397, 9, 7,
  86.                     "2397", Hp2397, 9, 7,
  87.                     "plotfile", PlotFile, 19, 13,
  88. #endif
  89. };
  90.  
  91. #endif /* __DMUI_H */
  92.  
  93.